body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  background-color: black;
}
html, body {
  overscroll-behavior: none;
}
/* Fullscreen video wrapper */
.video-wrapper {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}

/* Fullscreen video styling */
.fullscreen-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
/* Overlay logo */
.video-overlay {
position: absolute;
bottom: 20px;
left: 20px;
width: 200px;
}
.content {
position: relative;
z-index: 1;
padding: 20px;
}
.section-below-video {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 20vh;
background-color: #000;
color: #fff;
text-align: center;
padding: 20px;
}
.section-below-video h1 {
font-family: 'Crimson Text', serif;
font-size: 35px;
margin-bottom: 20px;
text-transform: uppercase;
}

.section-below-video a {
font-family: 'Forum', cursive;  font-size: 30px;
color: #fff;
text-decoration: none;
margin: 0 15px;
border-bottom: 1px solid #fff;
transition: color 0.3s ease, border-bottom 0.3s ease;
text-transform: uppercase;
}

.section-below-video a:hover {
color: #CEAA7C;
border-bottom: 1px solid #CEAA7C;
}

@media screen and (max-width: 1024px) {
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-below-video a {
  font-family: 'Forum', cursive;    font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
}
}

@media screen and (max-width: 768px) {
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-below-video a {
  font-family: 'Forum', cursive;    font-size: 18px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
  text-transform: uppercase;
}
}

@media screen and (max-width: 640px) {
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-below-video a {
  font-family: 'Forum', cursive;   font-size: 18px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
  text-transform: uppercase;
}
}

/* Carousel */
.carousel-container {
  position: relative; /* allows absolutely positioned arrows */
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #fff;
}
.carousel {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
gap: 10px;
scrollbar-width: none; /* Hide scrollbar in Firefox */
background-color: #fff;
align-items: center;
margin-top: 35px;
}

.carousel::-webkit-scrollbar {
display: none; /* Hide scrollbar in Chrome, Safari, and Edge */
}
.carousel-button {

font-family: 'Work Sans', sans-serif;
font-weight: lighter;
color: #000;
position: absolute;

right: 10px; /* Align the buttons to the right */
background: none;
border: none;
font-size: 2rem;
cursor: pointer;
z-index: 1;
}

.carousel-button.left {
left: 10px;
}

.carousel-button.right {
right: 10px;
}
.carousel-item {
flex: 0 0 calc(80% - 10px);
scroll-snap-align: start;
text-align: center;
color: #fff;
font-family: 'Forum', cursive;
}

.carousel-item img {
width: 100%;
height: auto;

}

.carousel-item h3 {
margin-top: 10px;
font-size: 30px;
font-family: 'Forum', cursive;  font-weight: 100;
text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
.carousel-item {
  flex: 0 0 calc(80% - 10px); /* Two items visible on tablet */
}
.carousel-item h3 {
  margin-top: 10px;
  font-size: 23px;
  font-family: 'Forum', cursive; font-weight: 100;
  text-transform: uppercase;
}
}

@media screen and (max-width: 768px) {
.carousel-item {
  flex: 0 0 calc(80% - 10px); /* Center one item with half items visible on mobile */
}
.carousel-item h3 {
  margin-top: 10px;
  font-size: 15px;
  font-family: 'Forum', cursive;  font-weight: 100;
  text-transform: uppercase;
}

}
/* Header styling */
h1 {
  font-family: 'Crimson Text', serif;
  font-size: 35px;
  font-weight: 100;
}

/* Subheader styling */
h2 {
  font-family: 'Forum', cursive;
  font-size: 30px;
}

/* Body text styling */
p {
  font-family: 'Work Sans', sans-serif;
  font-size: 23px;
  font-weight: 300;
}

a {
  font-family: 'Forum';
  font-size: 23px;
  font-weight: 100;
}
/* Responsive styles */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 23px;
  }
  p {
    font-size: 18px;
  }
  a {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

  /* Navbar container */
    .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    
    z-index: 1000;
  }

  /* Left container: Logo and links */
  .navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
  }

  /* Logo */
  .navbar-logo img {
    height: 40px;
    width: 40px;
  }
  .navbar-menu img {
    height: 40px;
    width: 40px;
  }

  .navbar-menu {
    display: none;
  }


  /* Navbar links */
  .navbar-links {
    display: flex;
    gap: 20px;
    flex-grow: 1;
  }

  .navbar-links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'Crimson Text', serif;
    transition: color 0.3s ease;
  }

  .navbar-links a:hover {
    color: #CEAA7C;
  }

  /* Book Now button */
  .navbar-button {
    background-color: #ceaa7c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Crimson Text', serif;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .navbar-button:hover {
    background-color: #ffcc99;
    transform: scale(1.05);
  }

  /* Hamburger menu */
   .hamburger {
    display: none;
    font-size: 25px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    background: none;
    border: none;
    padding-left: 10px;
  }
  /* Collapsed menu */
  .navbar-links.collapsed {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 100%; /* Aligns perfectly below the navbar */
    left: 0;
    width: 100%; /* Match the navbar width */
    max-width: 85vw; /* Ensure it does not exceed navbar width */
    border-radius: 0 0 10px 10px;
    padding: 10px 20px;
    z-index: 999;
}

  .navbar-links.collapsed a {
    padding: 10px 0;
    text-align: left;
    color: white;
    display: block;
  }

  .navbar-links.collapsed a:hover {
    color: #CEAA7C;
  }
  .lswitch {
    display: block;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: normal;
    margin-left: 10px;
    font-family: 'Crimson Text', serif;
    transition: color 0.3s ease;
  }
  .lswitch a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: 400;
    font-family: 'Crimson Text', serif;
    transition: color 0.3s ease;
  }
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    .navbar-links {
      display: none;
    }
    .navbar-menu {
      display: block;
    }
    .hamburger {
      display: block;
    }

    .navbar {
      flex-direction: row;
    }
    .navbar-logo img {
      height: 40px;
      width: 40px;
    }
    .lswitch {
      display: none;
    }
  }

  /* Footer styles */
.footer {
background-color: #191715; /* Dark background */
color: white;
padding: 40px 5%;
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

/* Left Section: The Hotel & More */
.footer-left {
display: flex;
flex-direction: row;
width: 30%;
min-width: 250px;
gap: 40px;
}

/* Right Section: Newsletter */
.footer-right {
flex: 1; /* Takes remaining space */
max-width: 400px;
}

.footer h2 {
font-family: 'Crimson Text', serif;
font-weight: 400;
font-size: 20px;
margin-bottom: 10px;
}

.footer p {
font-size: 14px;
font-family: 'Work Sans', sans-serif;
font-weight: 300;
color: white;
margin-bottom: 15px;
margin-top: 15px;
}

/* Footer Links */
.footer ul {
list-style: none;
padding: 0;
}

.footer ul li {
margin-bottom: 6px;
}

.footer ul li a {
color: white;
text-decoration: none;
font-size: 14px;
transition: color 0.3s;
font-family: 'Work Sans', sans-serif;
}

.footer ul li a:hover {
color: #CEAA7C;
}

/* Newsletter Form */
.footer form {
display: flex;
flex-direction: column;
gap: 10px;
}

.footer input {
padding: 10px;
font-family: 'Work Sans', sans-serif;
font-size: 14px;
color: white;
background-color: transparent;
border: 1px solid white;

}

.footer button {
text-transform: uppercase;
padding: 10px;
font-family: 'Crimson Text', serif;
font-size: 16px;
background-color: #d3a676;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}

.footer button:hover {
background-color: #ffcc99;
}

/* Footer Bottom */
.footer-line {
border: 0;
border-top: 1px solid #555;
margin-top: 30px;
}

.footer-bottom {
text-align: center;
font-family: 'Work Sans', serif;
font-weight: 300;
font-size: 14px;
color: #f5f5f5;
margin-top: 20px;
}

.footer-bottom a {
color: #fff;
text-decoration: underline;
margin: 0 10px;
font-size: 14px;
}

.footer-bottom a:hover {
color: #CEAA7C;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
.footer-container {
    flex-direction: column;
    text-align: left;
    align-items: left;
}

.footer-left {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    text-align: left;
}

.footer-right {
    margin-top: 10vh;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.footer-bottom {
    font-size: 12px;
}
}


.suite-section {
  max-width: 100vw;
  margin: 10vh auto 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Left: text, Right: carousel */
  align-items: center;
  gap: 2rem;
}

/* ...existing code... */

@media (max-width: 1024px) {
  .suite-section {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
  }
}

  /* Left Column: Text & Button */
  .suite-text h1 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  .suite-text p {
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  .suite-text a {
    font-family: 'Crimson Text', serif;
    text-decoration: underline;
    color: #000;
    font-weight: 400;
    font-size: 23px;
  }

      /* Container */
      .suite-details {
          max-width: 95vw;
          margin: 0 auto;
          padding: 2rem;
          display: grid;
          grid-template-columns: repeat(4, 1fr); /* 4 columns for large screens */
          gap: 2rem;
        }
      .suite-details p {
          font-family: 'Work Sans', sans-serif;
          font-weight: 300;
          font-size: 16px;
          line-height: 1.5;
      }
        /* Heading */
        .suite-details h2 {
          font-family: 'Forum', serif;
          font-weight: 400;
          font-size: 23px;
          margin-bottom: 1rem;
        }
    
        /* Responsive grid */
        @media (max-width: 1024px) { /* Tablet */
          .suite-details {
            grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
          }
        }
    
        @media (max-width: 600px) { /* Mobile */
          .suite-details {
            grid-template-columns: repeat(1, 1fr); /* 4x1 (single column) */
          }
        }